home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / vbcc / targets / ppc-morphos / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-27  |  192 b   |  14 lines

  1. #pragma begin_header
  2. /* setjmp.h - PowerPC */
  3.  
  4. #ifndef __SETJMP_H
  5. #define __SETJMP_H 1
  6.  
  7. typedef int jmp_buf[24];
  8.  
  9. int setjmp (jmp_buf);
  10. void longjmp (jmp_buf, int);
  11.  
  12. #endif
  13. #pragma end_header
  14.